home *** CD-ROM | disk | FTP | other *** search
/ L' Effet Pommier 3 / L'Effet Pommier - Volume 03.iso / Graphismes / 3D / POV-Ray 3.0B5a PPC / POV-Ray 3.0B5a / POVSCN.Scenes / POV3DEMO / ATMOS / HOLLOW3.POV < prev    next >
Text File  |  1995-11-08  |  916b  |  53 lines

  1. // Persistence Of Vision raytracer version 3.0 sample file.
  2. // File by Dieter Bayer.
  3. // This scene shows a hollow, checkered sphere filled with fire.
  4.  
  5. #version 3.0
  6. global_settings { assumed_gamma 2.2 }
  7.  
  8. #include "colors.inc"
  9.  
  10. camera {
  11.   location <-1.5, 30, -150>
  12.   look_at <0, 25, 35>
  13.   angle 25
  14. }
  15.  
  16. background { color rgb<0.2, 0.4, 0.8> }
  17.  
  18. light_source { <100, 100, -200> colour White }
  19.  
  20. plane { <0, 1, 0>, 0
  21.    pigment { NeonBlue }
  22.    finish {reflection 0.15}
  23. }
  24.  
  25. sphere { 0, 1
  26.   pigment {
  27.     checker colour YellowGreen colour rgbt<1, 1, 1, 0.7>
  28.     quick_color White
  29.     scale <0.4, 0.5, 0.2>
  30.     rotate <90, 0, -90>
  31.   }
  32.   finish {
  33.     brilliance 8
  34.     phong 1
  35.     phong_size 100
  36.   }
  37.   halo {
  38.     emitting
  39.     spherical_mapping
  40.     linear
  41.     turbulence 1
  42.     colour_map {
  43.       [ 0 color rgbf <1, 0, 0, 0> ]
  44.       [ 1 color rgbf <1, 1, 0, 0.6> ]
  45.     } 
  46.     samples 5
  47.   }
  48.   scale 25
  49.   translate 25*y 
  50.   hollow
  51.  
  52.